home *** CD-ROM | disk | FTP | other *** search
- /* DrawBits.h
- **
- ** Copyright 1995, mFactory, Inc.
- ** All rights reserved.
- */
-
- #pragma once
-
- #ifndef _DrawBits_
- #define _DrawBits_
-
- typedef struct DrawBitsComp DrawBitsComp;
-
- #ifndef MSelf
- #define MComponentName DrawBits
- #define MSelf DrawBitsComp
- #include "MFusion.h"
- #endif
-
- typedef struct DrawBitsComp {
- MEvent f_applyEvent;
- MEvent f_removeEvent;
- } DrawBitsComp;
-
- const short kDrawBitsRev = 0;
-
- enum {
- kDrawBuffered, kDrawBitsNumProcs
- };
-
- const kDrawBitsSlot = kMBaseCompSlot + 1;
-
- #endif
-